body {
      background: #f8f9fa;
      font-family: Arial, sans-serif;
    }

    .opening-container {
      margin: 40px auto;
      max-width: 800px;
    }

    .opening-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
      padding: 40px;
      margin-bottom: 30px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      cursor: pointer;
      position: relative;
    }

    .opening-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 198, 255, 0.3);
    }

    h2 {
      color: #0d6efd;
      font-size: 2rem;
      font-weight: bold;
    }

    p {
      margin-top: 15px;
      font-size: 1.1rem;
      color: #444;
    }

    .read-more-btn {
      margin-top: 15px;
      z-index: 1;
    }

    /* Application Modal background */
    #applicationModal .modal-content {
      background: linear-gradient(to right, #74ebd5, #ACB6E5);
    }

    #applicationModal .modal-title {
    text-align: center;
    width: 100%;
  }

    @media (max-width: 576px) {
      h2 {
        font-size: 1.5rem;
      }
      .opening-card {
        padding: 25px;
      }
    }